home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Developer Toolbox 6.1
/
SGI Developer Toolbox 6.1 - Disc 1.iso
/
toolbox
/
src
/
demos
/
OpenGL
/
tex_cube
/
Makefile
< prev
next >
Wrap
Makefile
|
1996-11-11
|
354b
|
18 lines
#!smake
#
include ${ROOT}/usr/include/make/commondefs
LC++INCS= -I$(ROOT)/usr/include -I$(ROOT)/usr/include/GL
LLDLIBS = -limage -lGLU -lGL -lX11 -lmalloc
C++FILES = oglwindow.c++ texture.c++ unitsquare.c++ tex_cube.c++
TARGETS = tex_cube
default all: $(TARGETS)
include ${COMMONRULES}
$(TARGETS): $(OBJECTS)
$(C++F) -o $@ $(OBJECTS) $(LDFLAGS)